home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1995 August / PC Plus Super CD (Issue 106) (PCP106) (August 1995).iso / bioforge / restart.bat < prev   
Encoding:
DOS Batch File  |  1995-02-06  |  366 b   |  13 lines

  1. @echo off
  2.  
  3. echo This will delete everything in your savegame directory (GAMEDAT).  This
  4. echo will not delete any individual savegames.  If you don't want to do this, 
  5. echo hit (CTRL)-C now.  Otherwise, hit any key to continue.
  6. pause > nul
  7.  
  8. cd gamedat
  9. attrib -r -h -s *.*
  10. echo y | del *.*
  11. cd..
  12.  
  13. echo Everything in your savegame directory has been erased.